summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-09-15 04:20:45 +0200
committerGitHub <noreply@github.com>2023-09-15 04:20:45 +0200
commit19053ab631e8359e05d72c0f01ec8696b24bd71a (patch)
treed9666826f6a60c916f06f48c3ec6faa1637bf0bf
parentMerge pull request #11504 from t895/emu-args (diff)
parentandroid: Don't reinitialize settings on emulation start (diff)
downloadyuzu-19053ab631e8359e05d72c0f01ec8696b24bd71a.tar
yuzu-19053ab631e8359e05d72c0f01ec8696b24bd71a.tar.gz
yuzu-19053ab631e8359e05d72c0f01ec8696b24bd71a.tar.bz2
yuzu-19053ab631e8359e05d72c0f01ec8696b24bd71a.tar.lz
yuzu-19053ab631e8359e05d72c0f01ec8696b24bd71a.tar.xz
yuzu-19053ab631e8359e05d72c0f01ec8696b24bd71a.tar.zst
yuzu-19053ab631e8359e05d72c0f01ec8696b24bd71a.zip
-rw-r--r--src/android/app/src/main/jni/native.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/android/app/src/main/jni/native.cpp b/src/android/app/src/main/jni/native.cpp
index b9ecefa74..8ac28b638 100644
--- a/src/android/app/src/main/jni/native.cpp
+++ b/src/android/app/src/main/jni/native.cpp
@@ -262,9 +262,6 @@ public:
Core::SystemResultStatus InitializeEmulation(const std::string& filepath) {
std::scoped_lock lock(m_mutex);
- // Loads the configuration.
- Config{};
-
// Create the render window.
m_window = std::make_unique<EmuWindow_Android>(&m_input_subsystem, m_native_window,
m_vulkan_library);